home *** CD-ROM | disk | FTP | other *** search
- "FILE"="Xteq Systems X-Setup Plugin 3.1"
- "TYPE"="5"
- "COUNT"="1"
- "UIPATH"="System\Security"
- "NAME"="Screensaver"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Delete Screensaver Password"
- "DESCRIPTION 1"="Click the first button if you have set a password for your screensaver and you do not remember it anymore."
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
- "COMMENT 2"="Version 1.1"
-
-
-
- Sub Plugin_Initialize
- ' Disable
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- i=ElementIndex
- Select Case i
-
- Case 1
- s=RegReadValue("HKUS\.Default\Control Panel\desktop\ScreenSave_Data")
- if IsEmpty(s)=false then
- Call RegDeleteValue("HKUS\.Default\Control Panel\desktop\ScreenSave_Data")
- end if
- Call MsgInformation("Deleted")
-
- end select
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-